home *** CD-ROM | disk | FTP | other *** search
Wrap
SSSSSSSSBBBBMMMMVVVV((((3333SSSS)))) SSSSSSSSBBBBMMMMVVVV((((3333SSSS)))) NNNNAAAAMMMMEEEE SSSSSSSSBBBBMMMMVVVV, DDDDSSSSBBBBMMMMVVVV - Multiplies a real vector by a real symmetric band matrix SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS Single precision Fortran: CCCCAAAALLLLLLLL SSSSSSSSBBBBMMMMVVVV ((((_u_p_l_o,,,, _n,,,, _k,,,, _a_l_p_h_a,,,, _a,,,, _l_d_a,,,, _x,,,, _i_n_c_x,,,, _b_e_t_a,,,, _y,,,, _i_n_c_y)))) C/C++: ####iiiinnnncccclllluuuuddddeeee <<<<ssssccccssssllll____bbbbllllaaaassss....hhhh>>>> vvvvooooiiiidddd ssssssssbbbbmmmmvvvv ((((cccchhhhaaaarrrr _u_p_l_o,,,, iiiinnnntttt _n,,,, iiiinnnntttt _k,,,, ffffllllooooaaaatttt _a_l_p_h_a,,,, ffffllllooooaaaatttt *_a,,,, iiiinnnntttt _l_d_a,,,, ffffllllooooaaaatttt *_x,,,, iiiinnnntttt _i_n_c_x,,,, ffffllllooooaaaatttt _b_e_t_a,,,, ffffllllooooaaaatttt *_y,,,, iiiinnnntttt _i_n_c_y))));;;; Double precision Fortran: CCCCAAAALLLLLLLL DDDDSSSSBBBBMMMMVVVV ((((_u_p_l_o,,,, _n,,,, _k,,,, _a_l_p_h_a,,,, _a,,,, _l_d_a,,,, _x,,,, _i_n_c_x,,,, _b_e_t_a,,,, _y,,,, _i_n_c_y)))) C/C++: ####iiiinnnncccclllluuuuddddeeee <<<<ssssccccssssllll____bbbbllllaaaassss....hhhh>>>> vvvvooooiiiidddd ddddssssbbbbmmmmvvvv ((((cccchhhhaaaarrrr _u_p_l_o,,,, iiiinnnntttt _n,,,, iiiinnnntttt _k,,,, ddddoooouuuubbbblllleeee _a_l_p_h_a,,,, ddddoooouuuubbbblllleeee *_a,,,, iiiinnnntttt _l_d_a,,,, ddddoooouuuubbbblllleeee *_x,,,, iiiinnnntttt _i_n_c_x,,,, ddddoooouuuubbbblllleeee _b_e_t_a,,,, ddddoooouuuubbbblllleeee *_y,,,, iiiinnnntttt _i_n_c_y))));;;; IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN These routines are part of the SCSL Scientific Library and can be loaded using either the ----llllssssccccssss or the ----llllssssccccssss____mmmmpppp option. The ----llllssssccccssss____mmmmpppp option directs the linker to use the multi-processor version of the library. When linking to SCSL with ----llllssssccccssss or ----llllssssccccssss____mmmmpppp, the default integer size is 4 bytes (32 bits). Another version of SCSL is available in which integers are 8 bytes (64 bits). This version allows the user access to larger memory sizes and helps when porting legacy Cray codes. It can be loaded by using the ----llllssssccccssss____iiii8888 option or the ----llllssssccccssss____iiii8888____mmmmpppp option. A program may use only one of the two versions; 4-byte integer and 8-byte integer library calls cannot be mixed. The C and C++ prototypes shown above are appropriate for the 4-byte integer version of SCSL. When using the 8-byte integer version, the variables of type iiiinnnntttt become lllloooonnnngggg lllloooonnnngggg and the <<<<ssssccccssssllll____bbbbllllaaaassss____iiii8888....hhhh>>>> header file should be included. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN These routines perform the following matrix-vector operation: _y <- _a_l_p_h_a _A_x + _b_e_t_a _y where _a_l_p_h_a and _b_e_t_a are scalars, _x and _y are _n-element vectors, and _A is an _n-by-_n symmetric band matrix. PPPPaaaaggggeeee 1111 SSSSSSSSBBBBMMMMVVVV((((3333SSSS)))) SSSSSSSSBBBBMMMMVVVV((((3333SSSS)))) See the NOTES section of this man page for information about the interpretation of the data types described in the following arguments. This routine has the following arguments: _u_p_l_o Character. (input) Specifies whether the upper or lower triangular part of band matrix _A is supplied, as follows: _u_p_l_o= 'U' or 'u': the upper triangular part of _A is being supplied. _u_p_l_o= 'L' or 'l': the lower triangular part of _A is being supplied. _n Integer. (input) Specifies the order of matrix _A. _n >= 0. _k Integer. (input) Specifies the number of superdiagonals of matrix _A. _k >= 0. _a_l_p_h_a Scalar alpha. (input) SSSSSSSSBBBBMMMMVVVV: Single precision. DDDDSSSSBBBBMMMMVVVV: Double precision. _a Array of dimension (_l_d_a,_n). (input) SSSSSSSSBBBBMMMMVVVV: Single precision array. DDDDSSSSBBBBMMMMVVVV: Double precision array. Before entry with _u_p_l_o = 'U' or 'u', the leading (_k+1)-by-_n part of array _a must contain the upper triangular band part of the symmetric matrix, supplied column-by-column, with the leading diagonal of the matrix in row (_k+1) of the array, the first superdiagonal starting at position 2 in row _k, and so on. The top left _k-by-_k triangle of array _a is not referenced. Before entry with _u_p_l_o = 'L' or 'l', the leading (_k+1)-by-_n part of array _a must contain the lower triangular band part of the symmetric matrix, supplied column-by-column, with the leading diagonal of the matrix in row 1 of the array, the first subdiagonal starting at position 1 in row 2, and so on. The bottom right _k-by-_k triangle of array _a is not referenced. See the NOTES section for examples of Fortran code that transfer upper and lower parts of symmetric band matrices from conventional full matrix storage to band storage. _l_d_a Integer. (input) Specifies the first dimension of _a as declared in the calling program. _l_d_a >= (_k+1). PPPPaaaaggggeeee 2222 SSSSSSSSBBBBMMMMVVVV((((3333SSSS)))) SSSSSSSSBBBBMMMMVVVV((((3333SSSS)))) _x Real array of dimension 1+(_n-1) * |_i_n_c_x|. (input) SSSSSSSSBBBBMMMMVVVV: Single precision array. DDDDSSSSBBBBMMMMVVVV: Double precision array. Contains vector _x. _i_n_c_x Integer. (input) Specifies the increment for the elements of _x. _i_n_c_x must not be 0. _b_e_t_a Scalar beta. (input) SSSSSSSSBBBBMMMMVVVV: Single precision. DDDDSSSSBBBBMMMMVVVV: Double precision. _y Array of dimension 1+(_n-1) * |_i_n_c_y|. (input and output) SSSSSSSSBBBBMMMMVVVV: Single precision array. DDDDSSSSBBBBMMMMVVVV: Double precision array. Contains vector _y. On exit, the updated vector overwrites array _y. _i_n_c_y Integer. (input) Specifies the increment for the elements of _y. _i_n_c_y must not be 0. NNNNOOOOTTTTEEEESSSS The following program segment transfers the upper triangular part of a symmetric band matrix from conventional full matrix storage to band storage: DO 20, J = 1, N M = K + 1 - J DO 10, I = MAX( 1, J - K ), J A( M + I, J ) = MATRIX( I, J ) 10 CONTINUE 20 CONTINUE The following program segment transfers the lower triangular part of a symmetric band matrix from conventional full matrix storage to band storage: DO 20, J = 1, N M = 1 - J DO 10, I = J, MIN( N, J + K ) A( M + I, J ) = MATRIX( I, J ) 10 CONTINUE 20 CONTINUE SSSSSSSSBBBBMMMMVVVV/DDDDSSSSBBBBMMMMVVVV is a Level 2 Basic Linear Algebra Subprogram (Level 2 BLAS). PPPPaaaaggggeeee 3333 SSSSSSSSBBBBMMMMVVVV((((3333SSSS)))) SSSSSSSSBBBBMMMMVVVV((((3333SSSS)))) When working backward (_i_n_c_x < 0 or _i_n_c_y < 0), this routine starts at the end of the vector and moves backward, as follows: _x(1-_i_n_c_x * (_n-1)), _x(1-_i_n_c_x * (_n-2)) , ..., _x(1) _y(1-_i_n_c_y * (_n-1)), _y(1-_i_n_c_y * (_n-2)) , ..., _y(1) DDDDaaaattttaaaa TTTTyyyyppppeeeessss The following data types are described in this documentation: TTTTeeeerrrrmmmm UUUUsssseeeedddd DDDDaaaattttaaaa ttttyyyyppppeeee Fortran: Array dimensioned _n xxxx((((nnnn)))) Array of dimensions (_m,_n) xxxx((((mmmm,,,,nnnn)))) Character CCCCHHHHAAAARRRRAAAACCCCTTTTEEEERRRR Integer IIIINNNNTTTTEEEEGGGGEEEERRRR (IIIINNNNTTTTEEEEGGGGEEEERRRR****8888 for ----llllssssccccssss____iiii8888[[[[____mmmmpppp]]]]) Single precision RRRREEEEAAAALLLL Double precision DDDDOOOOUUUUBBBBLLLLEEEE PPPPRRRREEEECCCCIIIISSSSIIIIOOOONNNN C/C++: Array dimensioned _n xxxx[[[[_n]]]] Array of dimensions (_m,_n) xxxx[[[[mmmm****nnnn]]]] Character cccchhhhaaaarrrr Integer iiiinnnntttt (lllloooonnnngggg lllloooonnnngggg for ----llllssssccccssss____iiii8888[[[[____mmmmpppp]]]]) Single precision ffffllllooooaaaatttt Double precision ddddoooouuuubbbblllleeee Note that you can explicitly declare multidimensional C/C++ arrays provided that the array dimensions are swapped with respect to the Fortran declaration (e.g., xxxx[[[[nnnn]]]][[[[mmmm]]]] in C/C++ versus xxxx((((mmmm,,,,nnnn)))) in Fortran). To avoid a compiler type mismatch error in C++ (or a compiler warning message in C), however, the array should be cast to a pointer of the appropriate type when passed as an argument to a SCSL routine. SSSSEEEEEEEE AAAALLLLSSSSOOOO IIIINNNNTTTTRRRROOOO____SSSSCCCCSSSSLLLL(3S), IIIINNNNTTTTRRRROOOO____BBBBLLLLAAAASSSS2222(3S) PPPPaaaaggggeeee 4444 SSSSSSSSBBBBMMMMVVVV((((3333SSSS)))) SSSSSSSSBBBBMMMMVVVV((((3333SSSS)))) IIIINNNNTTTTRRRROOOO____CCCCBBBBLLLLAAAASSSS(3S) for information about using the C interface to Fortran 77 Basic Linear Algebra Subprograms (legacy BLAS) set forth by the Basic Linear Algebra Subprograms Technical Forum. PPPPaaaaggggeeee 5555